Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@discordia/action

Package Overview
Dependencies
Maintainers
1
Versions
36
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@discordia/action

Class for creating discordia actions

  • 0.1.1
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
40
increased by1900%
Maintainers
1
Weekly downloads
 
Created
Source

Note: Some of the links in this README file work better on the documentation site

Installation

# install the module using npm
npm install @discordia/action

# install the module using yarn
yarn add @discordia/action

Discordia actions are designed to be used with a Discordia framework instance. See the section on testing below for details on how to validate your actions.

Basic Example

const DiscordiaAction = require('@discordia/action');

const pingAction = new DiscordiaAction('ping', 'pong');
# Conversation Example(s)

User: @BotName ping
BotName: @User, pong

Usage

Every Discordia action is made of three pieces: an accessor, a response, and an optional description.

Accessor

The accessor is how the Discordia framework determines whether or not this action should give its response. The Discordia framework calls the action's checkAccessor method which in turn determines whether or not to call the action's handleAction method based on the type of the accessor. The checkAccessor method is given four parameters:

ParameterDescription
userActionThe first string after the name of the bot that triggered the framework
msgThe full Message object that contains userAction and userArgs in its content
userArgsEverything in side the msg.content field after userAction as an array
frameworkThe full Discordia Framework instance - USE WITH CAUTION

String

If the accessor is a string and matches userAction exactly then handleAction for this action will be called.

Array

If the accessor is an array and any of its entries matches userAction exactly then handleAction for this action will be called.

Function

If the accessor is a function that returns true when provided with userAction, msg, and framework then handleAction for this action will be called.

Response

The response is how the Discordia framework responds to a user that tries to interact with the bot it creates. Once handleAction is called it will determine how to respond to the user based on the type of the response. The handleAction method is given three parameters:

ParameterDescription
msgThe full Message object that contains userAction and userArgs in its content
userArgsEverything in side the msg.content field after userAction as an array
frameworkThe full Discordia Framework instance - USE WITH CAUTION

String

If the response is a string then msg.reply is called with response as the content parameter.

Function

If the response is a function then that function will be called with msg, userArgs, and framework as parameters. If the function returns a string then msg.reply is called with the result of that function as the content parameter.

Description

Description is an optional parameter that must be a string used to enable a help (or h) action on the Discordia framework. By default the discordia framework will attempt to supply usage information to server members who ask the bot created by the Discordia framework for help.

// Default Behavior
`-------------------------
**Command**: \`${accessor}\`

${description}`

Accessor is formatted based on its type to show the available options (with "{Dynamic Accessor}" sent if the accessor is a function). The description is the exact contents of the description parameter given to the Discordia action constructor.

If description is ommitted or set to null then the whole action will be left off when the the help action is triggered.

The behavior of the help command can be overriden - see the Discordia Framework constructor.

Examples

String Accessor and String Response

const DiscordiaAction = require('@discordia/action');

const pingAction = new DiscordiaAction('ping', 'pong');
# Conversation Example(s)

User: @BotName ping
BotName: @User, pong

Array Accessor

const DiscordiaAction = require('@discordia/action');

const ouchAction = new DiscordiaAction(['oof', 'ow', 'ouch'], 'rekt');
# Conversation Example(s)

User: @BotName oof
BotName: @User, rekt
---
User: @BotName ow
BotName: @User, rekt
---
User: @BotName ouch
BotName: @User, rekt

Function Accessor

const DiscordiaAction = require('@discordia/action');

const accessor = (userAction, msg, framework) => {
  if (msg.content.includes('potato')) {
    return true;
  }
  return false;
};
const potatoAction = new DiscordiaAction(accessor, 'delicious');
# Conversation Example(s)

User: @BotName Do you like potatoes?
BotName: @User, delicious

Function Response

const DiscordiaAction = require('@discordia/action');

const response = (userArgs, msg, framework) => {
  return `here is a joke for ${msg.author.username}: ${generateJoke()}`;
};
const jokeAction = new DiscordiaAction('joke', response);
# Conversation Example(s)

User: @BotName joke
BotName: @User, here is a joke for User: {something funny}

Testing

🚧 Coming Soon! 🚧

Keywords

FAQs

Package last updated on 06 May 2020

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc